home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 1
/
CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso
/
Aminet
/
biz
/
demo
/
StylusDemo.lha
/
Stylus_Demo
/
REXX
/
ProVector.pvrx
< prev
next >
Wrap
Text File
|
1995-05-03
|
2KB
|
66 lines
/***************************************************************************
* *
* $VER: ProVector.pvrx 3.0 (03.May.95) *
* Copyright © 1989-95 by Stylus, Inc. *
* *
* ProVector looks for this macro at startup to configure Ctrl-Keys, *
* RX tools, ETC. *
* *
* *
***************************************************************************/
/*
SIGNAL ON ERROR
TRACE BACKGROUND
*/
/*
Define control-key combinations to call macros. The following Control
keys may not be used:
Ctrl-H = BackSpace
Ctrl-J = LineFeed
Ctrl-M = CR
Ctrl-] = Escape
*/
'DefineKey C "Center Both"'
'DefineKey E "MovePts MENU"' /* "E" for "Edit" */
'DefineKey F ToggleFastEdit'
'DefineKey L LayerSel'
'DefineKey N SelectNOT'
'DefineKey R ToggleRulers'
'DefineKey S Status'
'DefineKey T ToggleToolsStay'
'DefineKey Z ZoomSel'
/* Define the Rx Tool */
'RxDefine ToggleView'
/* Define some menus for the Ctrl-Keys */
'Define "Center Ctrl-C" Center'
'Define "CropMarks " "CropMarks MENU"'
'Define "CutPath " "CutPath MENU"'
'Define "JoinPaths " "JoinPaths MENU"'
'Define "LayerSel " LayerSel'
'Define "LockObj " "LockObj MENU"'
'Define "MovePts Ctrl-E" "MovePts MENU"'
'Define "Randomize " "Random"'
'Define "RoundRect Ctrl-R" "RoundRect MENU"'
'Define "SelectNOT Ctrl-N" SelectNOT'
'Define "ShowCharSet " ShowCharSet'
'Define "ShowMag " ShowMag'
'Define "Status Ctrl-S" Status'
'Define "ZoomNonProp " ZoomNonProp'
'Define "ZoomSel Ctrl-Z" ZoomSel'
ERROR:
/* At startup ProVector LOCK's screen upon detection of
"REXX:ProVector.pvrx." Thus this last command is
required. */
'UnLock'
EXIT